home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / PROGEDIT / 3458B.ZIP / AMAC44B.ZIP / QSIZ.BAT < prev    next >
DOS Batch File  |  1991-10-21  |  318b  |  13 lines

  1. @echo off
  2. :qsiz.bat          October 17, 1991
  3.         cls
  4.         echo Converts "c:#" (text) to "c:#.φ" (binary)
  5.         if not exist   c:# goto NOTEXIST
  6.         QMAC c:#.φ     c:#   /B /A-
  7.         dir  c:#.φ>c:¡
  8.         del  c:#
  9.         del  c:#.φ
  10.         exit
  11. :NOTEXIST
  12.         echo c:# does not exist 
  13.